*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

/* Apply to the whole page */
body {
  cursor: url('Images/Fish cursor.png'), auto;
background-color: black;
  background-image: url(./Images/BG/Black.jpg);
  background-attachment: fixed;
  min-height: 100vh;
}


.hero{
    width: 100%;
    height: 15vh;
    position: relative;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    
}

nav{
    width:100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: url('Images/cat cursor.png'), pointer;
    

}


nav .logo{
    width: 80px;
    cursor: url('Images/cat cursor.png'), pointer;
}

nav ul li{
    list-style: none;
    display: inline-block;
    margin-left: 40px;
    font-family: AlteHaasGroteskRegular; 
}

nav ul li a{
    text-decoration: none;
    color: #fff;
    font-size: 17px;
    
}

.tabs{
    width: 100%;
    height: auto;
    position: relative;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 40px 5%;
}

.video-item video {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Tablet */
@media (max-width: 900px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

.video-types{
    width:100%;
    position: relative;
    top: 0;
    left: 0;
    margin-top: 20px;
    padding: 20px 0%;
    padding-bottom: 80px;
    display: flex;
    justify-content: center;
    cursor: url('Images/cat cursor.png'), pointer;
    color: #fff;
    z-index: 1;
}

.video-types ul li{
    list-style: none;
    display: inline-block;
    margin: 30px;
    font-family: AlteHaasGroteskRegular; 
}

.video-types ul li a{
    text-decoration: none;
    color: #fff;
    font-size: 17px;
}

.tab-aesthetic h1{
    text-decoration: none;
    color: #fff;
    font-size: 17px;
}

[data-tab-content] {
    display: none;
    
}

.active[data-tab-content] {
    display: block;
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    margin-top: 20px;
    padding: 20px 0%;
    display: flex;
    justify-content: center;
    color: #fff;
    font-family: AlteHaasGroteskRegular; 
    z-index: 1;
}

.content{
    text-align: center;
    display: inline-block;

}

.title-h1 {
    margin-top: 0px;
    font-size: 60px;
    font-family: AlteHaasGroteskBold; 
    color: #fff;
    font-weight: 100;
    white-space: nowrap;
    text-align: center;
    overflow: hidden; /* Ensures text is hidden until typed */
    border-right: 0.1em solid rgb(255, 255, 255); /* The cursor */
    white-space: nowrap; /* Keeps text on a single line */ 
    margin: 0 auto;
    width: 20ch;
    animation: 
    typing 1.2s steps(20, end),
    blink-caret 1.2s step-end infinite;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 40%;
    }
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: rgb(255, 255, 255); }
}

.subtitle-h4{
    font-size: 15px;
    font-family: AlteHaasGroteskRegular; 
    color: #fff;
    font-weight: 20;
    text-align: center;
    margin-bottom: 0;
}


@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #000000;
  font-size: 14px;
  font-family: AlteHaasGroteskRegular;
  color:#fff
}